shell 中的特殊符号

        shell中常用到的特殊字符。

  • * 代表零个或多个任意字符
1
2
3
4
[root@localhost 111]# ls
1 11.txt 1.txt 22.txt 2.txt 33.txt 3.txt 44.zip 55.zip
[root@localhost 111]# ls *.txt
11.txt 1.txt 22.txt 2.txt 33.txt 3.txt
  • ? 只代表一个任意的字符
1
2
3
4
[root@localhost 111]# ls
1 11.txt 1.txt 22.txt 2.txt 33.txt 3.txt 44.zip 55.zip
[root@localhost 111]# ls ?.txt
1.txt 2.txt 3.txt
  • # 注释符号

        这个符号在linux中表示注释说明的意思,即#后面的内容linux忽略掉。

1
2
3
[root@localhost ~]# abc=123 #aaa
[root@localhost ~]# echo $abc
123
  • \ 脱意字符
    它将后面的特殊符号(例如“*”)还原为普通字符。
1
2
[root@localhost ~]# ls -d test\*
ls: 无法访问test*: 没有那个文件或目录
  • | 管道符

        它的作用在于将符号前面命令的结果丢给符号后面的命令。这里提到的后面命令,并不是所有的命令都可以的,一般针对文档操作的命令比较常用,例如 cat , less , head , tail , greo , cut , sort , wc , unip , tee , tr , split , sed , awk 等等,其中grep ,sed ,awk 为正则表达式。

1
2
[root@localhost ~]# cat /etc/passwd|wc -l
21

        wc -l用来计算一个文档有多少行。

  • 特殊符号 $

        $ 除了用于变量前面的标识符外,还有一个妙用,就是和“!”结合起来使用。

1
2
3
4
5
[root@localhost ~]# ls 1.py
1.py
[root@localhost ~]# ls !$
ls 1.py
1.py

        !$ 表示上条命令中最后一个变量(总之就是上条命令中最后出现的那个东西)例如上边命令最后是 1.py 那么在当前命令下输入 !$ 则代表 1.py

  • 特殊符号 ;

        平时在一行中敲一个命令,然后回车就运行了,那么在一行中运行两个或两个以上的命令则需要在命令之间加一个“;”

1
2
3
[root@localhost ~]# ls *.py;touch 4.py;ls *.py
1.py 2.py 3.py
1.py 2.py 3.py 4.py
  • 特殊符号 ~

        用户的家目录。如果是root则是/root。普通用户则是/home/username

1
2
3
4
5
6
7
[root@localhost ~]# cd ~
[root@localhost ~]# pwd
/root
[root@localhost ~]# su test
[test@localhost root]$ cd ~
[test@localhost ~]# pwd
/home/test
  • 特殊符号 &

        如果想把一条命令放到后台执行的话,则需要加上“&”这个符号。通常用于时间非常长的情况。

1
2
3
4
[root@localhost ~]# sleep 100 &
[2] 2393
[root@localhost ~]# jobs
[1]+ 运行中 sleep 100 &
  • 重定向符号 > >> 2> 2>>

        重定向符号>以及>>,分别表示取代和追加的意思。然后还有两个符号就是2>和2>>,分别表示错误重定向和错误追加重定向。当运行一个命令报错时,报错信息会输出到当前的屏幕,如果想重定向到一个文本里,则要用2>或者2>>。

1
2
3
4
5
6
7
8
[root@localhost ~]# ls aaaa
ls: 无法访问aaaa: 没有那个文件或目录
[root@localhost ~]# ls aaaa 2> /tmp/error
[root@localhost ~]# cat /tmp/error
ls: 无法访问aaaa: 没有那个文件或目录
[root@localhost ~]# ls aaaa 2>> /tmp/errror
[root@localhost ~]# cat /tmp/error
ls: 无法访问aaaa: 没有那个文件或目录
  • 中括号 []

        中间为字符组合,代表中间字符中的任意一个。

1
2
3
4
5
6
[root@localhost ~]# ls *.py
1.py 2.py 3.py 4.py
[root@localhost ~]# ls [1-3].py
1.py 2.py 3.py
[root@localhost ~]# ls [0-9].py
1.py 2.py 3.py 4.py